home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’95 / Search Example / TTY_Messages.h < prev   
Text File  |  1991-01-25  |  520b  |  18 lines

  1. /*** TTY_Messages.h ***/
  2.  
  3. void TTY_InitMessages(WindowPtr theWin, Rect r, int fnt, int font_size);
  4. /* Init for programs with windows already */
  5.  
  6. void TTY_SAInitMessages();
  7. /** Initialization for stand-alone, dumb tty applications. **/
  8. /** Should be the FIRST call in your main program. **/
  9.  
  10. void TTY_RedrawMessages();
  11. /*repaint the message area*/
  12.  
  13. void TTY_WriteMessage(char *str);
  14. /** writes a message to the debug window, adding a CR at the end **/
  15.  
  16. void TTY_ClearMessages();
  17. /** clear out top line and message area*/
  18.